home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / tcxl551.arc / TCXL_INC.EXE / lha / INC / TCXLERR.H < prev    next >
Text File  |  1990-10-01  |  3KB  |  53 lines

  1. /*=====[ The TesSeRact(TM) CXL User Interface Development System ]======*
  2.  | Copyright (c) 1987-1990, Innovative Data Concepts. All Rights Reserved
  3.  |
  4.  | This Library is part of IDC's TesSeRact Development Tools product
  5.  | line. For information about other IDC products, call 1-215-884-3373.
  6.  *----------------------------------------------------------------------*
  7.  | <TCXLerr.h> : Definitions of TCXL error and diagnostic codes.
  8.  *-------------------------------[ NOTES ]------------------------------*
  9.  | 1) These values are inherited from CXL and WILL CHANGE for TCXL 6.0.
  10.  | 2) This file is included by <TCXLwin.h>.
  11.  | 3) TCXL 5.5 functions no longer return these values. They set global
  12.  |    TclxErr and return the following.
  13.  |       ERR_ESC = 1    [Esc] pressed
  14.  |       ERR_NUL = 0    for success
  15.  |       ERR_ARG = -1   argument failure
  16.  |       ERR_MEM = -2   allocation failure
  17.  *----------------------------------------------------------------------*
  18.  | PGS : $Id: tcxlerr.h 5.51 90/10/01 00:00:00 MLM Release Locker: MLM $
  19.  | $Log:    tcxlerr.h $
  20.  | Revision 5.51  90/10/01  00:00:00  MLM
  21.  | TCXL 5.51
  22.  | 
  23.  *======================================================================*/
  24. #ifndef  _TCXLerr_
  25. #  define   _TCXLerr_ 1          /*- TcxlErr error-codes ------------*/
  26. #  define   W_ESCPRESS  0x01     /* Escape key was pressed           */
  27. #  define   W_ALLOCERR  0x02     /* memory allocation error          */
  28. #  define   W_NOTFOUND  0x03     /* record not found                 */
  29. #  define   W_NOACTIVE  0x04     /* no active window                 */
  30. #  define   W_INVCOORD  0x05     /* invalid coordinates              */
  31. #  define   W_INVFORMT  0x06     /* invalid format string            */
  32. #  define   W_NOINPDEF  0x07     /* no input fields defined          */
  33. #  define   W_STRLONG   0x08     /* string too long for window       */
  34. #  define   W_INVBTYPE  0x09     /* invalid box type                 */
  35. #  define   W_NOBORDER  0x0A     /* no window border                 */
  36. #  define   W_NOHIDDEN  0x0B     /* no hidden windows                */
  37. #  define   W_NOTHIDD   0x0C     /* window is not hidden             */
  38. #  define   W_NOSELECT  0x0D     /* no selectable menu items         */
  39. #  define   W_NOITMDEF  0x0E     /* no menu items defined            */
  40. #  define   W_NOMNUEND  0x0F     /* no end of menu specified         */
  41. #  define   W_NOMNUDEF  0x10     /* no menu defined                  */
  42. #  define   W_NOMNUBEG  0x11     /* no begin of menu specified       */
  43. #  define   W_NOFRMDEF  0x12     /* no form defined                  */
  44. #  define   W_NOFRMBEG  0x13     /* no begin of form specified       */
  45. #  define   W_NOHLPDEF  0x14     /* no help record defined           */
  46. #  define   W_HLPSTKOV  0x15     /* help stack overflow              */
  47. #  define   W_HLPSTKUN  0x16     /* help stack underflow             */
  48. #  define   W_DOSERROR  0x17     /* DOS error                        */
  49. #  define   W_NOMATCH   0x18     /* no files matched input filespec  */
  50. #  define   W_INVTAGID  0x19     /* invalid tag identifier           */
  51. #  define   W_INVPATH   0x1A     /* path invalid or not found        */
  52. #endif   /* _TCXLerr_ : End of TCXLerr.h */
  53.